home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 / Ham Radio 2000.iso / ham2000 / antenna / yagiu112 / getopt.c < prev    next >
C/C++ Source or Header  |  1995-08-07  |  3KB  |  107 lines

  1.  
  2. /*
  3.  * Here's something you've all been waiting for:  the AT&T public domain
  4.  * source for getopt(3).  It is the code which was given out at the 1985
  5.  * UNIFORUM conference in Dallas.  I obtained it by electronic mail
  6.  * directly from AT&T.  The people there assure me that it is indeed
  7.  * in the public domain.
  8.  * 
  9.  * There is no manual page.  That is because the one they gave out at
  10.  * UNIFORUM was slightly different from the current System V Release 2
  11.  * manual page.  The difference apparently involved a note about the
  12.  * famous rules 5 and 6, recommending using white space between an option
  13.  * and its first argument, and not grouping options that have arguments.
  14.  * Getopt itself is currently lenient about both of these things White
  15.  * space is allowed, but not mandatory, and the last option in a group can
  16.  * have an argument.  That particular version of the man page evidently
  17.  * has no official existence, and my source at AT&T did not send a copy.
  18.  * The current SVR2 man page reflects the actual behavor of this getopt.
  19.  * However, I am not about to post a copy of anything licensed by AT&T.
  20.  */
  21.  
  22. #include <stdio.h>
  23. #ifdef BSD
  24. #include <strings.h>
  25. #else
  26. #include <string.h>
  27. #endif
  28.  
  29. /*LINTLIBRARY*/
  30. #ifndef NULL
  31. #define NULL    0
  32. #endif
  33. #define EOF     (-1)
  34.  
  35.  
  36. int     opterr = 1;
  37. int     optind = 1;
  38. int     optopt;
  39. char    *optarg;
  40.  
  41. void ERR(char *s, char c, char **argv)  
  42. {
  43.     if(opterr)
  44.     {
  45.         char errbuf[2];
  46.         errbuf[0] = c;
  47.         errbuf[1] = '\n';
  48.         /* (void) write(2, argv[0], (unsigned)strlen(argv[0]));
  49.         (void) write(2, s, (unsigned)strlen(s));
  50.         (void) write(2, errbuf, 2); */
  51.         (void) fwrite(argv[0], (unsigned)strlen(argv[0]),1,stderr);
  52.         (void) fwrite(s, (unsigned)strlen(s),1,stderr);
  53.         (void) fwrite(errbuf, 2, 1,stderr); 
  54.     }
  55. }
  56.  
  57. char *index2(char *str, char c)
  58. {
  59.     char *ret;
  60.     ret=strchr(str,c);
  61.     return(ret);
  62. }
  63.  
  64.  
  65. int getoptions(int argc, char **argv, char *opts)
  66. {
  67.     static int sp = 1;
  68.     register int c;
  69.     register char *cp;
  70.  
  71.     if(sp == 1)
  72.         if(optind >= argc ||
  73.            argv[optind][0] != '-' || argv[optind][1] == '\0')
  74.             return(EOF);
  75.         else if(strcmp(argv[optind], "--") == 0) {
  76.             optind++;
  77.             return(EOF);
  78.         }
  79.     optopt = c = argv[optind][sp];
  80.     if(c == ':' || (cp=index2(opts, c)) == NULL) {
  81.         ERR(": illegal option -- ", c,argv);
  82.         if(argv[optind][++sp] == '\0') {
  83.             optind++;
  84.             sp = 1;
  85.         }
  86.         return('?');
  87.     }
  88.     if(*++cp == ':') {
  89.         if(argv[optind][sp+1] != '\0')
  90.             optarg = &argv[optind++][sp+1];
  91.         else if(++optind >= argc) {
  92.             ERR(": option requires an argument -- ", c,argv);
  93.             sp = 1;
  94.             return('?');
  95.         } else
  96.             optarg = argv[optind++];
  97.         sp = 1;
  98.     } else {
  99.         if(argv[optind][++sp] == '\0') {
  100.             sp = 1;
  101.             optind++;
  102.         }
  103.         optarg = NULL;
  104.     }
  105.     return(c);
  106. }
  107.